From 617482f0580f5bf9849110e5202dfded596b122b Mon Sep 17 00:00:00 2001 From: "emellor@leeni.uk.xensource.com" Date: Tue, 25 Oct 2005 11:52:56 +0100 Subject: [PATCH] NBD scripts, courtesy of Kurt Garloff: For domain migration, unless you use a rootless setup, you need to have network storage available. For the poor people like me that have no SAN, one easy possibility to have it is to use nbd. Find attached the block-nbd script (in /etc/xen/scripts/) and an example config file. The block-nbd script is based on the -enbd one. They have been used successfully in the Xen Tutorial at Linux Kongress. Signed-off-by: Kurt Garloff --- tools/examples/block-nbd | 35 +++++++++++++++++++++++++++++++++++ tools/examples/xmexample.nbd | 13 +++++++++++++ 2 files changed, 48 insertions(+) create mode 100644 tools/examples/block-nbd create mode 100644 tools/examples/xmexample.nbd diff --git a/tools/examples/block-nbd b/tools/examples/block-nbd new file mode 100644 index 0000000000..06f9f6875e --- /dev/null +++ b/tools/examples/block-nbd @@ -0,0 +1,35 @@ +#!/bin/sh + +# Usage: block-enbd [bind server ctl_port |unbind node] +# +# The file argument to the bind command is the file we are to bind to a +# loop device. +# +# The node argument to unbind is the name of the device node we are to +# unbind. +# +# This assumes you're running a correctly configured server at the other end! + +set -e + +#echo "block-enbd: $@" | logger -t xen + +case $1 in + bind) + for dev in /dev/nbd*; do + if nbd-client $2 $3 $dev; then + major=$(stat -L -c %t "$dev") + minor=$(stat -L -c %T "$dev") + pdev=$(printf "0x%02x%02x" 0x$major 0x$minor) + xenstore-write "$XENBUS_PATH"/physical-device $pdev \ + "$XENBUS_PATH"/node $dev + exit 0 + fi + done + exit 1 + ;; + unbind) + nbd-client -d $2 + exit 0 + ;; +esac diff --git a/tools/examples/xmexample.nbd b/tools/examples/xmexample.nbd new file mode 100644 index 0000000000..06a5d1feb1 --- /dev/null +++ b/tools/examples/xmexample.nbd @@ -0,0 +1,13 @@ +kernel = "/boot/vmlinuz-2.6.13-15b-xen" +ramdisk = "/boot/initrd-2.6.13-15b-xen" +memory = 128 +name = "nbd4" +nics=1 +# Please change MAC +vif = [ 'mac=aa:cc:10:10:00:a0, bridge=xenbr0' ] +# Please change PORT +disk = [ 'nbd:134.100.233.115 20004,hda1,w' ] +dhcp = "dhcp" +hostname= "nbd4" +root = "/dev/hda1 ro" +extra = "3" -- 2.30.2